aboutsummaryrefslogtreecommitdiff
path: root/src/pages/blog/[...slug].astro
blob: 646dabb13a7a186f4f72dd8dda627112a674ab47 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
---
import Page from '../../layouts/BlogPost.astro';
import { getEntry } from 'astro:content';
import { formatDate } from "../../util";
const { slug } = Astro.params;

if (slug === undefined) {
    throw new Error('Slug is required');
}

const entry = await getEntry('blog', slug);

if(entry === undefined) {
    return Astro.redirect('/404');
}

const { Content } = await entry.render();
---
<Page title={entry.data.title} description={entry.data.description} pubDate={formatDate(entry.data.pubDate)} tags={entry.data.tags}>
    <main>
        <a href="/blog" class="back-link">← All articles</a>
        <article>
            <Content />
        </article>
    </main>
</Page>

<style is:global>
    img {
        width: 20%;
    }

    @media (max-width: 768px) {
        img {
            width: 50%;
        }
    }
</style>